home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / networking / 2747 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  2.9 KB

  1. Path: news.delphi.com!usenet
  2. From: daleburrell@delphi.com
  3. Newsgroups: comp.sys.amiga.networking
  4. Subject: help with dial script
  5. Date: Thu, 21 Mar 96 22:23:35 -0500
  6. Organization: Delphi (info@delphi.com email, 800-695-4005 voice)
  7. Message-ID: <53DI1SH.daleburrell@delphi.com>
  8. NNTP-Posting-Host: bos1f.delphi.com
  9.  
  10. Can someone help me get my dialup script for 'PPP.device'
  11.  
  12. I do connect now, but that all that happen.
  13.  
  14. I think what the service want is to get started first by
  15. sending 2 CR.
  16. Then it ask for my 'username:'
  17. Next it asks for my 'password:'
  18.  
  19. Then finally  it asks me to   1) Start PPP\n
  20.                               2) Telnet to the Server\n
  21.                               3) EXIT\n
  22.                                \n
  23.                                Enter Number:
  24.  
  25.  
  26. __________________here_is_my_capture_____________________________
  27.  
  28.  
  29. Annex Command Line Interpreter   *   Copyright 1991 Xylogics, Inc.
  30.  
  31.  
  32.  
  33. Checking authorization, Please wait...
  34.  
  35. Annex username: **********
  36.  
  37. Annex password: ************
  38.  
  39.  
  40.  
  41. Permission granted
  42.  
  43. Welcome to The Internet Ramp\n
  44. \n
  45. 1) Start PPP\n
  46. 2) Telnet to the Server\n
  47. 3) EXIT\n
  48. \n
  49. Enter Number:
  50. 3
  51.  
  52.  
  53.  
  54. Resetting line and disconnecting.
  55.  
  56.  
  57.  
  58.  
  59.  
  60. NO CARRIER
  61.  
  62. __________________HERE_IS_MY_DIALUP_SCRIPT________________________
  63.  
  64. #
  65. ECHO OFF
  66. TIMEOUT 3600    ; Set maximum wait time (in ticks)
  67. REDIAL "BUSY"   ; Redial on busy signal
  68. DELAY 100
  69. SEND ""
  70. DELAY 50                                 _____________________________
  71. SEND "atz"     ; Initialize the modem   |It seens to get stuck here.
  72. DELAY 20                                |I've tried WAIT "CT"
  73. WAIT "K"        ; Wait for the OK      / and        WAIT "14"
  74. SEND "ATDT2539040" ; Dial             /
  75. WAIT "BIS"       ; Wait for connect <-  but still nothing happens
  76. DELAY 10                              \
  77. SEND ""                                 \
  78. SEND ""                                  |
  79. WAIT "name:"        ; Wait for Name:     |____________________________
  80. SEND "*********" ; Send your User ID
  81. DELAY 20
  82. WAIT "d:"         ; Wait for Password:
  83. SEND "**********" ; Send your password
  84. DELAY 50
  85. SEND"1"
  86. #END
  87. _________________________________________________________________
  88.  
  89. Please help me to get connected. you will be helping me and a couple
  90. of others try this Service.
  91.  
  92. I've go on the service by call with another COMM program and then on
  93. the menu switch on 'serial quiet' then launch PPP(startnet). What a
  94. hassle!
  95.                 ********************************************
  96.          *   6 PHASES OF A PROJECT                  *
  97.          *                                          *
  98.          * 1. ENTHUSIASM                            *
  99.          * 2. DISILLUSIONMENT                       *
  100.          * 3. PANIC                                 *
  101.          * 4. SEARCH FOR THE GUILTY                 *
  102.          * 5. PUNISHMENT OF THE INNOCENT            *
  103.          * 6. PRAISE AND HONOR THE NON-PARTICIPANTS *
  104.          ********************************************
  105.